home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************************
- *
- * CEx1.s
- * © Simon Callan, 1992
- *
- * This program is intended as an example of using the Shared C Library from
- * assembler.
- *
- ******************************************************************************/
-
- #include <stddef.h>
- #include <stdio.h>
-
- int main(void)
- {
- printf("hello world\n");
- return 0;
- }
-